-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(AppNaviDropdownMenuButton): 選択中の項目が視覚的にも伝わるように装飾を追加 #5193
base: master
Are you sure you want to change the base?
Conversation
commit: |
})() | ||
|
||
const renderItemList = (children: ReactNode) => | ||
React.Children.map(children, (item): ReactNode => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DropdownMenuButton の children は portal に展開されてしまいスタイリングをあてられないため、React.Children.map
と React.cloneElemtne
を使ってスタイリングしています。
return renderItemList(item.props.children) | ||
} | ||
|
||
if (item.type === DropdownMenuGroup) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DrpodownMenuGroup の children に対してもスタイリングを当てたいため、再帰的に呼び出し。
}, | ||
})() | ||
|
||
const renderItemList = (children: ReactNode) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
全体的にやりたいことに対して処理がヘビーすぎるかも。
対象要素を一意に特定できるdata属性とかを設定しておいて、それに対してclass追加、とかのほうがロジックもスッキリするし処理も早い気がします
関連URL
https://smarthr.atlassian.net/browse/SHRUI-1180
概要
AppNaviDropdownMenuButton に current と同等の表現を付与するために
aria-current="page"
を使っています。ドロップダウンメニュー内の項目にaria-current="page"
が存在する場合に、ドロップダウントリガーを current にする、という処理になっています。aria-current="page"
が付いているため、どの項目が現在地なのか機械可読になっていますが、視覚的には伝わらない状態になっているため、これを修正します。変更内容
aria-current="page"
が付いている場合、背景色と太字の装飾が付くように修正確認方法
Storybook で確認してください。
https://63d0ccabb5d2dd29825524ab-zcokwihbgr.chromatic.com/?path=/story/navigation%EF%BC%88%E3%83%8A%E3%83%93%E3%82%B2%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%EF%BC%89-appnavi-appnavidropdownmenubutton--current